home *** CD-ROM | disk | FTP | other *** search
/ IRIX 5.3 for Indy R4400 / IRIX 5.3 for Indy R4400 175MHz.img / dist / eoe2.idb / usr / lib / perl / importenv.pl.z / importenv.pl
Text File  |  1995-02-28  |  390b  |  17 lines

  1. ;# $Header: /proj/irix5.3/isms/irix/cmd/perl4/lib/RCS/importenv.pl,v 1.1 1993/05/14 19:45:08 cwilson Exp $
  2.  
  3. ;# This file, when interpreted, pulls the environment into normal variables.
  4. ;# Usage:
  5. ;#    require 'importenv.pl';
  6. ;# or
  7. ;#    #include <importenv.pl>
  8.  
  9. local($tmp,$key) = '';
  10.  
  11. foreach $key (keys(ENV)) {
  12.     $tmp .= "\$$key = \$ENV{'$key'};" if $key =~ /^[A-Za-z]\w*$/;
  13. }
  14. eval $tmp;
  15.  
  16. 1;
  17.